home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 9825 / 9825.xpi / chrome / content / message_window.js < prev    next >
Text File  |  2009-07-17  |  477b  |  14 lines

  1. var MessageWindow = function()
  2. {
  3.     $(document).ready(function()
  4.     {
  5.         document.documentElement.setAttribute("title", window.arguments[0]);
  6.         var message_label = document.getElementById("message-label");
  7.         message_label.value = window.arguments[1];
  8.         setTimeout(function()
  9.         {
  10.             window.arguments[2]();
  11.             window.close();
  12.         }, 300);//at least show window for a bit, also to prevent problems
  13.     });    
  14. }();